home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / SYMBMATH.H08 < prev    next >
Text File  |  1994-03-29  |  823b  |  24 lines

  1.         3.1.6  Equations
  2.     An equation is an equality of two sides linked by an equation
  3. sign =, e.g. x^2+p = 0, where the symbol = stands for an equation.
  4. Note that the symbols "=", "==" and ":=" are different:
  5. ":=" is the assignment, "==" is the equal sign, but "=" is the
  6. equation sign.
  7.          Example:
  8. IN:  2 = 2
  9. OUT: 2 = 2             # unevaluated
  10. IN:  2 == 2
  11. OUT: 1                 # evaluated to 1 (true)
  12.  
  13.     Systems of equations are a list of equations, e.g. 
  14. [a1*x+a2*y=a3, b1*x+b2*y=b3].
  15.  
  16.                 3.1.7  Inequalities
  17.         e.g.
  18.                a < b              less than
  19.                a <= b             less than or equal to
  20.                a > b              greater than
  21.                a >= b             greater than or equal to
  22.                a == b             equal to
  23.                a <> b             not equals
  24.